.resume-hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
}
.resume-hero-image {
    width: 60vw;
    height: auto;
    object-fit: contain;
    transition: all .3s ease-in-out;
    border-radius: 30px;
    margin: 6vh;
}
.resume-hero-image:hover {
    transform: scale(1.069);
    border-radius: 30px;
}

@media(orientation: portrait) {
    .resume-hero-image{
        width: 75vw;
    }
}